let weatherDetail: {
    weather: string,
    zipcode: string,
    temp: number,
} = { weather: "sunny", zipcode: "00000", temp: 1 };
weatherDetail.weather = 2;
